home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 6 / CU Amiga Magazine's Super CD-ROM 06 (1996)(EMAP Images)(GB)(Track 1 of 4)[!][issue 1997-01].iso / cucd / readers / utils / cinterpreter / examples / loop2.c < prev   
C/C++ Source or Header  |  1994-07-01  |  369b  |  25 lines

  1. /* The loop statements. */
  2. main()
  3. {
  4.   int a;
  5.   char ch;
  6.   /* the while */
  7.   puts("Enter a number: ");
  8.   a = getnum();
  9.   while(a) {
  10.     print(a);
  11.     print(a*a);
  12.     puts("");
  13.     a = a - 1;
  14.   }
  15.   /* the do-while */
  16.   puts("enter characters, 'q' to quit");
  17.   do {
  18.     ch = getchar();
  19.   } while(ch!='q');
  20.   /* the for */
  21.   for(a=0; a<10; a = a + 1) {
  22.     print(a);
  23.   }
  24. }
  25.